home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / help / rfile < prev    next >
Text File  |  1994-04-25  |  1KB  |  44 lines

  1. rfile:
  2.  
  3. Syntax:    rfile
  4.     rfile name
  5.  
  6. Description:
  7.  
  8.     rfile : Prints a list of all the files with a `.r' suffix. The
  9.             list is compiled by searching the directories
  10.             contained in the environment variable
  11.             `RLAB_SEARCH_PATH'. 
  12.  
  13.     rfile name : Loads the contents of the file denoted by `name'
  14.             into the workspace. The name argument is NOT a string,
  15.             and does not include the `.r' suffix. 
  16.  
  17.         Allowable names for rfiles are filenames that start
  18.             with:
  19.             A digit, or a letter (a-z or A-Z).
  20.         and contain:
  21.             digits, letters, and/or `-' `_' `.'
  22.  
  23.             You may not be able to use all the possible filenames
  24.             allowed by the host operating system.
  25.  
  26.     If the user's environment does not contain RLAB_SEARCH_PATH,
  27.     then the default search-path is used. The default is set at
  28.     compile time. Normally the default is ".", the current working
  29.     directory. 
  30.  
  31.     Rfile is a command, not an expression or statement. Therefore,
  32.     it must be issued on a line by itself, and cannot occur in the
  33.     midst of another statement or expression. See `help COMMAND'
  34.  
  35.     The command `rfile name' can be used more than once. Each time
  36.     the command is issued the file `name.r' is loaded.
  37.  
  38.     The contents of the named file can be any valid RLaB commands
  39.     or functions. There is no limit to the number of functions
  40.     that a file can contain. Additionally, a mixture of commands,
  41.     and function definitions can be included in the same file.
  42.  
  43. See Also: COMMAND, KEYWORDS, help, load
  44.